21. Making Change
Making Change
Question:
Start Quiz:
// Define a function with the name and parameters: makeChange(double itemCost, double dollarsProvided)
// Calculate and return the calculated change which should be the dollarsProvided minus the itemCost
// Remember to return a value you need 1) a return type and 2) a return statement